home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / s_to_z / tpack / tpack.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  1.2 KB  |  40 lines

  1. program tPack;
  2.  
  3. uses
  4. {  Splash, }    {normally this is how you call the splashscreen; replaced for demo}
  5.   Forms,
  6.   Splash in 'SPLASH.PAS' {SplashScreenForm},
  7.   DemoPack in 'DEMOPACK.PAS' {tPack2Form},
  8.   About in 'ABOUT.PAS' {AboutBoxForm},
  9.   Debug in 'DEBUG.PAS' {DebugDlg},
  10.   LoginDlg in 'LOGINDLG.PAS' {LoginDialogForm},
  11.   ErrorMsg in 'ERRORMSG.PAS' {ErrorDialogForm},
  12.   DocProps in 'DOCPROPS.PAS' {ComponentPropForm},
  13.   Working in 'WORKING.PAS' {WorkingForm},
  14.   PasUtils in 'PASUTILS.PAS',
  15.   ToolProc in 'TOOLPROC.PAS',
  16.   Shells in 'SHELLS.PAS',
  17.   OkCore in 'OKCORE.PAS',
  18.   Bitbox in 'BITBOX.PAS',
  19.   IniLink in 'INILINK.PAS',
  20.   Restorer in 'RESTORER.PAS',
  21.   Debugctl in 'DEBUGCTL.PAS',
  22.   UserInfo in 'USERINFO.PAS',
  23.   UserBDE in 'USERBDE.PAS',
  24.   UserWin in 'USERWIN.PAS',
  25.   UserNetW in 'USERNETW.PAS',
  26.   UserDOS in 'USERDOS.PAS',
  27.   Toolbar in 'TOOLBAR.PAS',
  28.   Resizer in 'RESIZER.PAS',
  29.   TxtGrid in 'TXTGRID.PAS',
  30.   RegTPack in 'REGTPACK.PAS',
  31.   Invoice in 'INVOICE.PAS' {InvoiceForm};
  32.  
  33. {$R *.RES}
  34.  
  35. begin
  36.   Application.Title := 'Informal Component Demo Pack';
  37.   Application.CreateForm(TtPack2Form, tPack2Form);
  38.   Application.Run;
  39. end.
  40.